home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960425-19960715 / 000320_news@columbia.edu _Fri Jun 28 09:58:45 1996.msg < prev    next >
Internet Message Format  |  1996-07-26  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id JAA27985 for <kermit.misc@watsun.cc.columbia.edu>; Fri, 28 Jun 1996 09:58:44 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id JAA06519 for kermit.misc@watsun; Fri, 28 Jun 1996 09:58:42 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.dcom.sys.cisco,comp.protocols.kermit.misc
  7. Subject: Re: Kermit-95 dialing out using reverse telnet
  8. Date: 28 Jun 1996 13:58:39 GMT
  9. Organization: Columbia University
  10. Lines: 51
  11. Message-ID: <4r0oef$6bl@apakabar.cc.columbia.edu>
  12. References: <4quui3$nig@chagall.cti-software.nl>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14. Xref: news.columbia.edu comp.dcom.sys.cisco:41356 comp.protocols.kermit.misc:5464
  15.  
  16. In article <4quui3$nig@chagall.cti-software.nl>,
  17. Pim Zandbergen <pim@chagall.cti-software.nl> wrote:
  18. : I am trying to get Kermit-95 to dial out through a Cisco 2511 router,
  19. : using reverse telnet.
  20. : telnetting to the router on port [2000+line number] and dialling out from
  21. : there works fine for interactive sessions. Port [6000+line number] works
  22. : fine too, but on both these port numbers, ZMODEM transfers fail.
  23. : Kermit says the packets are too long and CRC errors occur on every packet.
  24. : Only on port [4000+line number], ZMODEM transfers succeed. But on this
  25. : port, interactive sessions are messy. I can get reasonable behaviour
  26. : using the following Kermit-95 options:
  27. :     SET TELNET ECHO                     REMOTE
  28. :     SET TELNET BINARY-MODE              REQUESTED
  29. :     SET TELNET NEWLINE-MODE BINARY-MODE RAW
  30. :     SET TERMINAL NEWLINE-MODE           OFF
  31. : I also tried
  32. :     telnet transparent
  33. : on the Cisco line. But the problem remains that the remote application
  34. : sees a CR/NL combination, whenever RETURN is pressed.
  35. : Explanation of Cisco port numbers:
  36. :     port 2000: telnet ascii
  37. :     port 4000: raw TCP
  38. :     port 6000: telnet binary
  39. : Incoming calls work just fine using the "terminal download" EXEC command
  40. : before starting the telnet connection.
  41. So you can have nice terminal sessions but Zmodem fails, or you can have
  42. Zmodem working OK but terminal sessions are fractured.  But of course, Kermit
  43. transfers work in all cases, right?  But you need to use Zmodem because the
  44. thing you are calling from the Cisco does not support Kermit?  The real
  45. solution is to have Kermit installed everywhere -- we designed it to work in
  46. situations like this, that's what it's for.
  47.  
  48. Obviously Kermit 95 can't control how the Cisco works.  It can initiate the
  49. needed Telnet negotiations -- as you have commanded it to do -- but that does
  50. not guarantee that the Cisco will agree, or even that if it does agree, it
  51. will behave properly.
  52.  
  53. Isn't there are way to use port 2000 / telnet ascii with the "terminal
  54. download" setting?
  55.  
  56. - Frank